home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / webfind.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  90 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10475);
  11.  script_bugtraq_id(1487);
  12.  script_version ("$Revision: 1.16 $");
  13.  script_cve_id("CVE-2000-0622");
  14.  name["english"] = "Buffer overflow in WebSitePro webfind.exe";
  15.  name["francais"] = "DΘpassement de buffer dans webfind.exe de WebSite pro";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote CGI '/cgi-bin/webfind.exe' is vulnerable to
  20. a buffer overflow when given a too long 'keywords' argument.
  21.  
  22. This problem allows an attacker to execute arbitrary code
  23. as root on this host.
  24.  
  25. Solution : upgrade to WebSitePro 2.5 or delete this CGI
  26. Risk factor : High";
  27.     
  28.  desc["francais"] = "
  29. Le CGI distant '/cgi-bin/webfind.exe' est vulnΘrable α
  30. un dΘpassement de buffer lorsqu'on lui donne un argument
  31. 'keywords' trop long.
  32.  
  33. Ce problΦme permet α un pirate d'executer du code arbitraire
  34. sur ce serveur.
  35.  
  36. Solution : mettez website pro α jour en version 2.5 ou effacez de CGI
  37. Facteur de risque : ElevΘ";
  38.  
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "buffer overflow attempt";
  43.  summary["francais"] = "essai de dΘpassement de buffer";
  44.  
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  # This test is harmless
  48.  script_category(ACT_ATTACK);
  49.  
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  52.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  53.  family["english"] = "CGI abuses";
  54.  family["francais"] = "Abus de CGI";
  55.  script_family(english:family["english"], francais:family["francais"]);
  56.  script_dependencie("find_service.nes", "http_version.nasl");
  57.  script_require_ports("Services/www", 80);
  58.  script_require_keys("www/websitepro");
  59.  exit(0);
  60. }
  61.  
  62. include("http_func.inc");
  63. include("http_keepalive.inc");
  64.  
  65.  
  66. port = get_http_port(default:80);
  67.  
  68.  
  69. if(!get_port_state(port))exit(0);
  70.  
  71. foreach dir (cgi_dirs())
  72. {
  73. req = string(dir, "/webfind.exe?keywords=", crap(10));
  74. req = http_get(item:req, port:port);
  75. r = http_keepalive_send_recv(port:port, data:req);
  76. if( r == NULL ) exit(0);
  77. if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 500 ", string:r))
  78. {
  79.  # No keep alive here
  80.  req = string(dir, "/webfind.exe?keywords=", crap(2000));
  81.  req = http_get(item:req, port:port);
  82.  soc = http_open_socket(port);
  83.  if(!soc)exit(0);
  84.  send(socket:soc, data:req);
  85.  r = http_recv(socket:soc);
  86.  http_close_socket(soc);
  87.  if(!r)security_hole(port);
  88.  }
  89. }
  90.